e035e240f97f219815aea13064a1d22a10e194af,Mage/src/mage/abilities/effects/common/SacrificeEffect.java,SacrificeEffect,apply,#Game#Ability#,69
Before Change
Permanent permanent = game.getPermanent(target.getFirstTarget());
if ( permanent != null ) {
return permanent.sacrifice(source.getId(), game);
}
}
return false;
After Change
player.choose(Outcome.Sacrifice, target, game);
}
for ( int idx = 0; idx < target.getTargets().size(); idx++) {
Permanent permanent = game.getPermanent((UUID)target.getTargets().get(idx));
if ( permanent != null ) {
abilityApplied |= permanent.sacrifice(source.getId(), game);
}
}